home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club 1996 April
/
Software of the Month Club 1996 April.iso
/
pc
/
win
/
edu
/
profan2
/
beispiel.lzh
/
BMPVIEW.PRF
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-07-31
|
316 b
|
16 lines
Declare Name$
WindowTitle "PICTURE VIEWER"
CLS
ShowMax
Let Name$=@LoadFile$("picture files","*.BMP")
WhileNot @Equ$(Name$,"")
Cls
LoadBmp Name$,0,0; 0
WindowTitle @Add$("PICTURE VIEWER - [", \
@Add$(Name$,"]"))
WaitMouse
Let Name$=@LoadFile$("Picture files","*.BMP")
Wend
End